home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / phpcsl_xss.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  81 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(14368);
  8.  script_bugtraq_id(11038);
  9.  script_version("$Revision: 1.2 $");
  10.  
  11.  name["english"] = "PHP-CSL Cross Site Scripting Vulnerability";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host is running PHP Code Snippet Library (PHP-CSL), a library
  17. written in PHP.
  18.  
  19. The remote version of this software is vulnerable to a cross-site scripting
  20. attack.
  21.  
  22. An attacker can exploit it by compromising the values of the parameter
  23. cat_select in index.php.
  24.  
  25. This can be used to take advantage of the trust between a client and server 
  26. allowing the malicious user to execute malicious JavaScript on 
  27. the client's machine.
  28.  
  29. Solution : Upgrade to the latest version of this software
  30. Risk factor: Medium";
  31.  
  32.  script_description(english:desc["english"]);
  33.  
  34.  summary["english"] = "Checks for the presence of an XSS bug in PHP-CSL";
  35.  
  36.  script_summary(english:summary["english"]);
  37.  
  38.  script_category(ACT_GATHER_INFO);
  39.  
  40.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  41.  family["english"] = "CGI abuses";
  42.  family["francais"] = "Abus de CGI";
  43.  script_family(english:family["english"], francais:family["francais"]);
  44.  script_dependencie("cross_site_scripting.nasl", "http_version.nasl");
  45.  script_require_ports("Services/www", 80);
  46.  exit(0);
  47. }
  48.  
  49. #
  50. # The script code starts here
  51. #
  52.  
  53.  
  54. include("http_func.inc");
  55. include("http_keepalive.inc");
  56.  
  57. port = get_http_port(default:80);
  58.  
  59. if(!get_port_state(port))exit(0);
  60. if(!can_host_php(port:port))exit(0);
  61. if (  get_kb_item(string("www/", port, "/generic_xss")) ) exit(0);
  62.  
  63. function check(loc)
  64. {
  65.  req = http_get(item:string(loc, "/index.php?cat_select=<script>foo</script>"), port:port);
  66.  
  67.  r = http_keepalive_send_recv(port:port, data:req, bodyonly:1);
  68.  if( r == NULL )exit(0);
  69.  if('<script>foo</script>' >< r )
  70.  {
  71.      security_warning(port);
  72.     exit(0);
  73.  }
  74. }
  75.  
  76. foreach dir (cgi_dirs())
  77. {
  78.  check(loc:dir);
  79. }
  80.  
  81.